home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1256.dms / var1256.adf / MyCLI / makecli.cli < prev    next >
Text File  |  1988-03-04  |  481b  |  24 lines

  1. ;
  2. ;script file to build MYCLI under MANX C
  3. ;
  4. ;  copy c.lib to ram: if not there
  5. ;
  6. ;  compile with -s option to supress pointer warning messages
  7. ;               -a option so we can assemble with other options
  8. ;
  9. cc -aso ram:mycli.asm mycli
  10. ;
  11. ;  assemble with -s option to make squeeze table bigger
  12. ;                    program will crash if this isn't done
  13. ;
  14. as -s1900 -o mycli.o ram:mycli.asm
  15. ;
  16. ;  kill ram: file
  17. ;
  18. delete ram:mycli.asm
  19. ;
  20. ;  link normally
  21. ;
  22. ln -o mycli mycli.o -lc
  23.  
  24.